home *** CD-ROM | disk | FTP | other *** search
/ A.C.E. 2 / ACE CD 2.iso / FILES / UTILS / WWORTH11.DMS / in.adf / devs / MountList next >
Encoding:
Text File  |  1991-10-17  |  2.3 KB  |  106 lines

  1. /* MountList for V1.3 */
  2.  
  3. DH0:
  4.     Device = scsidev.device
  5.     Unit = 1
  6.     Flags = 0
  7.     Reserved = 2
  8.     Buffers = 64
  9.     BufMemType = 1
  10.     Surfaces = 2
  11.     BlocksPerTrack = 32
  12.     LowCyl = 1 ; HighCyl = 1280
  13.     GlobVec = -1
  14.     StackSize = 4000
  15.     DosType = 0x444F5301
  16.     FileSystem = L:fastfilesystem
  17.     MaxTransfer = 8192
  18. #
  19.  
  20. /*  Mount Entry for the new Console Handler */
  21.  
  22. NEWCON: 
  23.     Handler = L:Newcon-Handler
  24.     Priority = 5
  25.     StackSize = 1000
  26. #
  27.  
  28. /* This is an example of a non-filing system mount using a handler written
  29.    in C.
  30. */
  31.  
  32. SPEAK:     
  33.     Handler = L:Speak-Handler
  34.     Stacksize = 6000
  35.     Priority = 5
  36.     GlobVec = -1
  37. #
  38.  
  39. /*  This is an example of an alternative type of non-filing device mount,
  40.     used to mount the non-buffered serial handler
  41. */
  42.  
  43. AUX:
  44.     Handler = L:Aux-Handler
  45.     Stacksize = 1000
  46.     Priority = 5
  47. #
  48. /*  This is a non-filing system device */
  49.  
  50. PIPE:      
  51.     Handler = L:Pipe-Handler
  52.     Stacksize = 6000
  53.     Priority = 5
  54.     GlobVec = -1
  55. #
  56.  
  57. /* This is an example of a mount list entry for using the recoverable 
  58.    ram disk.  Depending on the amount of memory you wish to devote to
  59.    it, you may want to change the HighCyl value.
  60. */
  61.  
  62. RAD:       Device = ramdrive.device
  63.            Unit   = 0
  64.            Flags  = 0
  65.            Surfaces  = 2
  66.            BlocksPerTrack = 11
  67.            Reserved = 2
  68.            Interleave = 0
  69.            LowCyl = 0  ;  HighCyl = 21
  70.            Buffers = 5
  71.            BufMemType = 1
  72. #
  73.  
  74. /* Mount a 5.25" disk drive to be mounted as DF2: */
  75.  
  76. DF2:       Device = trackdisk.device
  77.            Unit   = 2
  78.            Flags  = 1
  79.            Surfaces  = 2
  80.            BlocksPerTrack = 11
  81.            Reserved = 2
  82.            Interleave = 0
  83.            LowCyl = 0  ;  HighCyl = 39
  84.            Buffers = 20
  85.            BufMemType = 3
  86. #
  87.  
  88. /* Let's say you have an A2000 with an internal drive, and an external
  89.    drive, and you want to refer to the external drive as DF1: as well
  90.    as DF2:   Well, this MountList entry will do it for you.  This technique
  91.    can be extended to provide you with a drive A: and B: if you really
  92.    want.
  93. */
  94.  
  95. DF1:       Device = trackdisk.device
  96.            Unit   = 2
  97.            Flags  = 1
  98.            Surfaces  = 2
  99.            BlocksPerTrack = 11
  100.            Reserved = 2
  101.            Interleave = 0
  102.            LowCyl = 0  ;  HighCyl = 79
  103.            Buffers = 20
  104.            BufMemType = 3
  105. #
  106.